home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / python2.5-minimal.preinst < prev    next >
Text File  |  2008-10-05  |  311b  |  26 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     install)
  7.     # remember newly installed runtime
  8.     mkdir -p /var/lib/python
  9.     touch /var/lib/python/python2.5_installed
  10.     ;;
  11.     upgrade)
  12.     ;;
  13.  
  14.     abort-upgrade)
  15.     ;;
  16.  
  17.     *)
  18.         echo "preinst called with unknown argument \`$1'" >&2
  19.         exit 1
  20.     ;;
  21. esac
  22.  
  23.  
  24.  
  25. exit 0
  26.